home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / bitstrg.zip / FREEBITA.C < prev    next >
C/C++ Source or Header  |  1989-05-23  |  300b  |  21 lines

  1. /*
  2.     librairie : bitstrg
  3.  
  4.     freebitarray --    restitution memoire d'un champ de bits
  5.  
  6. */
  7.  
  8. #include "bitstrg.h"
  9.  
  10. /*
  11.     Restitution of the memory space of an array of bit
  12. */
  13.  
  14. void freebitarray(ptr)
  15.     struct SPARRAY * ptr;        /* pointer on structure */
  16. {
  17.  
  18.     free(ptr->pntarray);
  19.     free(ptr);
  20. }
  21.